FindIndex Method

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Overload List

NameDescription
Public methodFindIndex(Predicate<(Of <T>)>)
Finds the index of the first item in the list that satisfies the condition defined by predicate. If no item matches the condition, -1 is returned.
(Inherited from ListBase<(Of <T>)>.)
Public methodFindIndex(Int32, Predicate<(Of <T>)>)
Finds the index of the first item, in the range of items extending from index to the end, that satisfies the condition defined by predicate. If no item matches the condition, -1 is returned.
(Inherited from ListBase<(Of <T>)>.)
Public methodFindIndex(Int32, Int32, Predicate<(Of <T>)>)
Finds the index of the first item, in the range of count items starting from index, that satisfies the condition defined by predicate. If no item matches the condition, -1 is returned.
(Inherited from ListBase<(Of <T>)>.)

See Also